home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global memThreshold, playMode
- set memThreshold to 4120000
- if (the platform = "Macintosh,68K") and (the freeBytes < memThreshold) then
- set playMode to "64KMemLow"
- else
- if (the platform = "Macintosh,68K") and (the freeBytes > memThreshold) then
- set playMode to "64KMemOK"
- else
- if (the platform = "Macintosh,PowerPC") and (the freeBytes < memThreshold) then
- set playMode to "PPCMemLow"
- else
- if (the platform = "Macintosh,PowerPC") and (the freeBytes > memThreshold) then
- set playMode to "PPCMemOK"
- end if
- end if
- end if
- end if
- end
-